Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit cc73b2c2b995780a99db52a11d60a761416501a6


Parents : dbf19ed
Author : Mark Qvist <bc7291552be7a58f361522990465165c>
Date : 2026-05-04T01:13:25+02:00

Fixed escape

Changes

1 files changed, 2 insertions(+), 2 deletions(-)


Diff

diff --git a/RNS/Utilities/rngit/util.py b/RNS/Utilities/rngit/util.py
index 316abce5..fca4d4bb 100644
--- a/RNS/Utilities/rngit/util.py
+++ b/RNS/Utilities/rngit/util.py
@@ -471,12 +471,12 @@ class MarkdownToMicron:
result.append(self._escape_literals(border))
- # Header row (always left-aligned)
+ # Header row
header_line = self.TABLE_V
for i, cell in enumerate(header_cells):
padded = self._pad_cell(cell, col_widths[i], 'left')
header_line += f" {padded} {self.TABLE_V}"
- result.append(self._escape_literals(header_line))
+ result.append(header_line)
# Separator row - clean horizontal lines without alignment markers
sep_line = self.TABLE_ML


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────